home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SELF32._B_ < prev    next >
Text File  |  1997-05-22  |  926b  |  37 lines

  1. #
  2. # Borland makefile for SIMPLE [Win32]
  3. # Requires WSC32B.LIB & WSC32B.DLL
  4. #
  5. # To use: "make -fself32._B_"
  6. #
  7.  
  8. CCFLAGS = -c -DWIN32
  9.  
  10. selftest.exe: selftest.res selftest.obj selftest.def wsc32b.lib \
  11.             about.obj line.obj paint.obj sioerror.obj runtest.obj menu.obj
  12.     tlink32 -Tpe -ax c0w32 @selftest.rsp ,selftest,selftest, wsc32b.lib cw32 import32,selftest,selftest
  13.  
  14. selftest.res: selftest.rc
  15.     brcc32 -dWIN32 selftest.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc32 $(CCFLAGS)  about.c
  19.  
  20. selftest.obj: selftest.c selftest.h wsc.h
  21.    bcc32 $(CCFLAGS)  selftest.c
  22.  
  23. sioerror.obj: sioerror.c sioerror.h wsc.h
  24.    bcc32 $(CCFLAGS)  sioerror.c
  25.  
  26. paint.obj: paint.c paint.h
  27.    bcc32 $(CCFLAGS)  paint.c
  28.  
  29. line.obj: line.c line.h wsc.h
  30.    bcc32 $(CCFLAGS)  line.c
  31.  
  32. runtest.obj: runtest.c runtest.h wsc.h
  33.    bcc32 $(CCFLAGS)  runtest.c
  34.  
  35. menu.obj: menu.c menu.h wsc.h
  36.    bcc32 $(CCFLAGS)  menu.c
  37.